home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.19960425-19960715 / 000120_news@columbia.edu _Wed May 22 15:30:13 1996.msg < prev    next >
Internet Message Format  |  1996-07-26  |  4KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.5/8.7.3) with ESMTP id PAA10237 for <kermit.misc@watsun>; Wed, 22 May 1996 15:30:13 -0400 (EDT)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.5/8.7.3) id PAA07219 for kermit.misc@watsun; Wed, 22 May 1996 15:30:10 -0400 (EDT)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Path: news.columbia.edu!lamont.ldeo.columbia.edu!zombie.ncsc.mil!news.mathworks.com!tank.news.pipex.net!pipex!usenet2.news.uk.psi.net!uknet!uknet!bcc.ac.uk!ts-b.bcc.ac.uk!skaamjm
  6. From: skaamjm@ucl.ac.uk (Matthew Moore)
  7. Subject: Re: kermit & MS TCP/IP-32, v3.11b
  8. Message-ID: <1996May22.151734.105314@ucl.ac.uk>
  9. Date: Wed, 22 May 1996 15:17:34 GMT
  10. References: <4nkv5u$e7a@ralph.vnet.net>
  11. Organization: University College London
  12. Keywords: kermit TCP/IP-32
  13. Lines: 79
  14.  
  15. I add to degraaf's post the information that Kermit (3.13 and 3.14)
  16. will run alomgside the Microsoft stack under Windows 95.
  17. (I say alongside because the second IP address is needed).
  18.  
  19. NDIS3PKT installation under WIN95 is simpler : in the
  20. network control panel you choose ADD protocol,
  21. and specify location of NDS3PKT under
  22. 'HAVE DISK' - WIN95 does the rest.
  23.  
  24. Matthew Moore
  25.  
  26. degraaf@lys.vnet.net (degraaf) writes:
  27.  
  28. >Kermit _can_ be run over MicroSoft's new TCP/IP-32 ver 3.11b stack,
  29. >but there's a trick.
  30.  
  31. >Short story:
  32.  
  33. >You must add NDIS3PKT.386 and you must use two different IP addresses,
  34. >one for the MS stack, the other for kermit.
  35.  
  36. >Long story:
  37.  
  38. >I have a samba UNIX server and wanted to use the new MS TCP/IP-32
  39. >ver3.11b stack for WindowsforWorkgroups 3.11 and also use kermit
  40. >to log on directly to UNIX from a client PC.  I collected from
  41. >ftp.microsoft.com/bussys/clients/wfw the files TCP32B.EXE and
  42. >WFWFILES.EXE, as well as instruction files, INDEX.TXT, UPDATE.TXT, and
  43. >WFWFILES.TXT.  The .EXE files expand into floppy-loads that are used to
  44. >install this new stack into WfW 3.11 and some new files that are
  45. >manually copied according to the complete instructions given.
  46.  
  47. >This new stack uses NDIS ver 3 to access the Ethernet card, while
  48. >kermit uses a packet driver.  Previously, DIS_PKT9.DOS was interposed 
  49. >between kermit's packet driver and the NDIS module, and WINPKT.COM
  50. >was used to mediate between Windows and the packet driver.
  51. >This was clearly documented by Joe Doupnik in DIS_PKT.DOC in the
  52. >Kermit for DOS package.  Unfortunately these NDIS 2 programs don't work
  53. >any more with the new NDIS 3 stack.
  54.  
  55. >Instead, one uses NDIS3PKT.386, written by Daniel D. Lanciani.
  56. >It is a Windows VxD (Virtual Device) which provides a packet driver
  57. >interface on top of NDIS 3.  I collected ver 1.2 from
  58. >pc.usl.edu/pub/packet_drivers -  ndis3pkt.386 and ndis3pkt.readme.
  59. >Installation is very simple:
  60.  
  61. >Copy NDIS3PKT.386 file to the system directory, eg C:\WFW\SYSTEM.
  62. >In system.ini, add to [386Enh]
  63. >    device=ndis3pkt.386
  64. >and add a new section
  65. >    [ndis3pkt]
  66. >    netcard0=MS$NE1CLONE
  67.  
  68. >where MS$NE1CLONE happens to be the driver name for my network card.
  69. >Yours may well be different.  (It's usually found in the BINDINGS= line
  70. >of the [NETBEUI] section of protocol.ini)
  71.  
  72. >Now comes the trick.  You have, during network initialization,
  73. >specified an IP address for the PC.  This is used by the MS stack in
  74. >its communications with other machines on the network.
  75. >You must also give kermit an IP address, usually in MSCUSTOM.INI, eg,
  76. >     SET TCP/IP ADDRESS 192.9.100.23   ;(NOT 192.9.100.22)
  77. >Be SURE this is different from the address given to TCP/IP!
  78.  
  79. >When I initially used a single IP address for both, kermit's attempt 
  80. >to open a connection to the UNIX server failed with the  message
  81. >"Connection refused by host".  With a different IP address
  82. >for kermit, connections succeed.
  83.  
  84. >Apparently, when packets arrive for both NDIS and the packet driver
  85. >using the same IP address, bad things happen in the new MS stack. 
  86. >Since NDIS3PKT.386 includes a multiplexor, the same "extra" IP address
  87. >can be used by several packet driver programs, such as kermit. 
  88. >But you must now use up two addresses for each PC. 
  89. >Thanks, MicroSoft.
  90.  
  91. >--
  92. >    David A. De Graaf    degraaf@vnet.net
  93. >    DATIX, Inc.        (803) 785-3136
  94.